This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
No reason to avoid using LS since you can invoke Internet Explorer via OLE Automation and populate the text boxes on the web page. Using Google as an example, here's some quick and dirty code to fire up Google and populate the search box on that page (which is imaginatively named 'q') with the word "test"
Dim ie, searchbox
Set ie = CreateObject("InternetExplorer.Application")
ie.Navigate "http://www.google.com"
While (ie.busy)
Sleep 2
Wend
Set searchbox = ie.document.getElementsByName("q")
searchbox(0).value = "test"
ie.Visible = True
Feedback response number WEBB94FTCD created by ~Tip Opjipymanli on 01/30/2013